home *** CD-ROM | disk | FTP | other *** search
/ L' Effet Pommier 3 / L'Effet Pommier - Volume 03.iso / Programmation / Alpha ƒ / Tcl / UserCode / Text Filters / Text Munging / convert newlines next >
Text File  |  1994-03-01  |  78b  |  11 lines

  1. #!/bin/perl
  2.  
  3. undef $/  ;
  4. $* = 1 ;
  5.  
  6. $_ = <> ;
  7.  
  8. s/\015/\012/g ;
  9.  
  10. print STDOUT ;
  11.